home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DDJMAG / DDJ8801.ZIP / NARO.ZIP / GLOBALS.H < prev    next >
Text File  |  1987-10-30  |  726b  |  41 lines

  1. /*
  2.     Copyright (C) 1987 Paradigm Systems Inc.  All rights reserved.
  3. */
  4.  
  5. /*
  6.     This module contains all of the global data declarations
  7. */
  8.  
  9. #ifndef    GLOBALS
  10.  
  11. unsigned int    load_segment ;
  12. SEG_DESCRIPTOR    *seg_list ;
  13.  
  14. char    config_fname[FILENAME], abs_fname[FILENAME] ;
  15. char    module_name[FILENAME], locate_fname[FILENAME] ;
  16. char    print_fname[FILENAME], exe_fname[FILENAME] ;
  17. char    map_fname[FILENAME], tmp_fname[FILENAME] ;
  18.  
  19. char    command_line[COMMAND_LINE] ;
  20.  
  21. int    tmp_file ;
  22. int    abs_file ;
  23. int    exe_file ;
  24.  
  25. FILE    *map_file ;
  26. FILE    *print_file ;
  27. FILE    *config_file ;
  28.  
  29. BOOLEAN    boot_rec = FALSE, help = FALSE, config = FALSE ;
  30. BOOLEAN    hex_name = FALSE, user_abort = FALSE ;
  31.  
  32. #define    GLOBALS
  33.  
  34. #endif
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.